home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / FT16PKGS.ZIP / FTP.ZIP / REGFTP.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-04-24  |  325 b   |  19 lines

  1. unit regftp;
  2.  
  3. interface
  4.  
  5. uses Ftp, Classes,DsgnIntf;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. procedure Register;
  12. begin
  13.         RegisterComponents('Internet', [TFtp]);
  14.         RegisterComponents('Internet Dialogs', [FtpURLDialog]);
  15.         RegisterComponentEditor(FtpUrlDialog,FtpUrlDialogEditor);
  16. end;
  17.  
  18. end.
  19.